Create Player Account
1. Request URL
URL: {APIURL}/api/v1/player/create
2. Request Parameters
| Parameter Name | Type | Description |
|---|---|---|
| UserID | string[4-40] | The operator’s unique player ID |
- Example:
复制{ "UserID": "abc" }
3. Return Result
| Parameter Name | Type | Description |
|---|---|---|
| Pid | int64 | The platform’s unique player ID |
Example:
复制{ "error": "", "data": { "Pid": 100064 } }Creating the same player multiple times will return the same result.
- The
/api/v1/player/transferInand/api/v1/game/launchinterfaces will automatically create a player account if it does not already exist.